home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 22 / Amiga Format AFCD22 (Jan 1998, Issue 106).iso / -in_the_mag- / netbsd / .zshrc < prev    next >
Text File  |  1997-11-21  |  547b  |  33 lines

  1. #configuration file for Z-Shell 
  2.  
  3. #set the terminal type
  4. tset vt220
  5.  
  6. #set the path
  7. PATH=.:/bin:/usr/bin:/usr/local/X11R6.1/bin:/usr/local/bin
  8. export PATH
  9.  
  10. #set other environment variables
  11. TAPE=/dev/nrst0
  12. export TAPE
  13. ORACLE_HOME=/oracle
  14. export ORACLE_HOME
  15.  
  16. #define some aliases
  17.  
  18. alias df '/bin/df -k '
  19. alias local 'cd /local'
  20. alias windows 'startx'
  21. alias copy 'cp'
  22. alias dir 'ls'
  23. alias move 'mv'
  24. alias delete 'rm'
  25.  
  26. #set the prompt
  27. HOST=`/bin/hostname`
  28. export HOST
  29. THISUSER=`/usr/bin/whoami`
  30. export THISUSER
  31. PROMPT="$HOST>$THISUSER>"
  32. export PROMPT 
  33.